home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_08_05 / 8n05076b < prev    next >
Text File  |  1990-04-17  |  212b  |  14 lines

  1.  
  2. Listing 6:
  3. main()
  4. {
  5.     register int result;
  6.  
  7.     result = test();
  8.     printf("test() called, testcalled = %d\n", result);
  9.     result = test();
  10.     printf("test() called, testcalled = %d\n", result);
  11.     exit(0);
  12. }
  13.  
  14.